@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Parkinsans:wght@300..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

body,
input,
textarea,
button {
    font-family: "Roboto Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

html,
body {
    margin: 0;
    height: 100%;
    overflow: auto;
    color: white;
}

h2 {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    padding: 0;
}

.container {
    overflow-x: hidden;
    height: 100%;
}

.container-background {
    padding: 40px 0;
    height: 100%;
    min-height: fit-content;
    position: relative;
}

.blur-background {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./container-background.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    -webkit-filter: blur(4px);
    -moz-filter: blur(4px);
    -o-filter: blur(4px);
    -ms-filter: blur(4px);
    filter: blur(4px);
    transform: scale(1.1);
}

.box {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('./background.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 16px;
    width: 100%;
    height: fit-content;
    max-width: 640px;
    margin: auto;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.2), 0 14px 28px 0 rgba(0, 0, 0, 0.19);
}

.header {
    width: 100%;
    height: 300px;
    position: relative;
    text-align: center;
}

.header-background {
    background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    width: 100%;
    height: 100%;
    border-radius: 16px 16px 0 0;
    object-fit: cover;
    overflow-clip-margin: unset;
}

.avatar-background {
    background-color: rgb(72, 161, 255);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    position: absolute;
    bottom: -70px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    display: flex;
}

.avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    margin: auto;
}

.name-container {
    margin-top: 80px;
}

.name {
    display: inline-block;
    vertical-align: middle;
}

.check-icon {
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #00000068;
    padding: 20px;
    margin: 0 50px;
    margin-top: 150px;
    border-radius: 12px;
    text-align: center;
}

.button {
    width: 100%;
    padding: 0px 10px;
    height: 50px;
    border-radius: 10px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
    background-color: transparent;
    border-color: white;
    border-style: solid;
    color: white;
    font-size: 15px;
}

.button:hover {
    background-color: #0000005c;
    cursor: pointer;
}

.icon-social {
    width: 35px;
    height: 35px;
}

.div-right-button {
    width: 35px;
}

.logo-header {
    position: absolute;
    top: 5px;
    right: 0px;
    width: 50x;
    height: 50px;
}

.status-container {
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: white;
    color: #000000;
    padding: 2px 10px;
    border-radius: 20px;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ffffff;
    margin: 30px 50px;
}

.description {
    margin-top: 8px;
    margin-bottom: 12px;
}

footer {
    padding-top: 50px;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    border-radius: 0 0 16px 16px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-footer-container {
    display: flex;
    justify-content: center;
}

.logo-b-crown-footer {
    width: 50px;
    height: 50px;
}

.mail-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-mail {
    margin-left: 5px;
    font-style: italic;
    font-size: 13px;
}

@media only screen and (max-width: 767px) {
    .container-background {
        padding: 20px 15px;
    }

    .header {
        height: 220px;
    }

    .avatar-background {
        width: 110px;
        height: 110px;
        bottom: -55px;
    }

    .avatar {
        width: 100px;
        height: 100px;
    }

    .name-container {
        margin-top: 60px;
    }

    .button {
        min-width: 100%;
        height: 46px;
        margin: 10px 0;
    }

    .content {
        margin: 0 20px;
        margin-top: 130px;
    }

    .icon-social {
        width: 29px;
        height: 29px;
    }
}

@supports (-webkit-overflow-scrolling: touch) {
    .box {
        background-attachment: scroll;
    }
}